home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / tpwprog7.arj / STRLIB.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1992-07-02  |  686 b   |  26 lines

  1. { strlib.pas -- Import library unit for StrDLL }
  2.  
  3. unit StrLib;
  4.  
  5. interface
  6.  
  7. uses Wintypes, WinProcs, Strings;
  8.  
  9. function StrNCopy(Source: String; var P: PChar): PChar;
  10. function StrTok(var Next: PChar; P: PChar; C: Char): PChar;
  11. procedure StrFill(P: PChar; C: Char; Size: Word);
  12.  
  13. implementation
  14.  
  15. function StrNCopy;  external 'STRDLL' index 1;
  16. function StrTok;    external 'STRDLL' index 2;
  17. procedure StrFill;  external 'STRDLL' index 3;
  18.  
  19. end.
  20.  
  21.  
  22. {--------------------------------------------------------------
  23.   Copyright (c) 1991 by Tom Swan. All rights reserved.
  24.   Revision 1.00    Date: 5/25/1991
  25. ---------------------------------------------------------------}
  26.